home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 August (Alt) / CHIP 2005-08.1.iso / program / guvenlik / syslinux-3.07.exe / com32 / lib / atox.c < prev    next >
Encoding:
C/C++ Source or Header  |  2004-11-10  |  208 b   |  15 lines

  1. /*
  2.  * atox.c
  3.  *
  4.  * atoi(), atol(), atoll()
  5.  */
  6.  
  7. #include <inttypes.h>
  8. #include <stdlib.h>
  9. #include <stdio.h>
  10.  
  11. TYPE NAME (const char *nptr)
  12. {
  13.   return (TYPE) strntoumax(nptr, (char **)NULL, 10, ~(size_t)0);
  14. }
  15.